home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amiga / cgraphx / c / examples / makefile < prev    next >
Encoding:
Makefile  |  1995-12-18  |  156 b   |  11 lines

  1. CC = gcc
  2.  
  3. CFLAGS = -s -O2 -noixemul
  4.  
  5. Window: Window.c
  6.     -echo "Compiling & Linking Window... "
  7.     $(CC) Window.c $(CFLAGS) -o Window
  8.  
  9. clean:
  10.     -delete Window.o
  11.